75ad474c2ad5feac1b1e8dc1d781bb2bb04ab4a3,controller/src/main/java/org/jboss/as/controller/operations/global/ReadChildrenResourcesHandler.java,ReadChildrenResourcesHandler,execute,#OperationContext#ModelNode#,89

Before Change


            readOp.get(OP).set(READ_RESOURCE_OPERATION);
            readOp.get(OP_ADDR).set(PathAddress.pathAddress(address, childPath).toModelNode());
            GlobalOperationHandlers.INCLUDE_RUNTIME.validateAndSet(operation, readOp);
            GlobalOperationHandlers.RECURSIVE.validateAndSet(operation, readOp);
            GlobalOperationHandlers.RECURSIVE_DEPTH.validateAndSet(operation, readOp);
            GlobalOperationHandlers.PROXIES.validateAndSet(operation, readOp);
            GlobalOperationHandlers.INCLUDE_DEFAULTS.validateAndSet(operation, readOp);

After Change


        final ModelNode readOp = new ModelNode();
        readOp.get(OP).set(READ_RESOURCE_OPERATION);
        GlobalOperationHandlers.INCLUDE_RUNTIME.validateAndSet(operation, readOp);
        GlobalOperationHandlers.RECURSIVE.validateAndSet(operation, readOp);
        GlobalOperationHandlers.RECURSIVE_DEPTH.validateAndSet(operation, readOp);
        GlobalOperationHandlers.PROXIES.validateAndSet(operation, readOp);
        GlobalOperationHandlers.INCLUDE_DEFAULTS.validateAndSet(operation, readOp);